.animate-bold {
  font-weight: bold;
}

.animate-normal {
  font-weight: normal;
}

.container, .col-md-1, .col-md-2 {
  font-size: 18px; /* Adjust the font size as needed */
  text-align: center;
}

table.custom-table {
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #000;
  width: 100%;
}

/* Add an inside border to table cells, excluding the header cells */
table.custom-table td,
table.custom-table th {
  border: none;
  border-bottom: 1px solid #000;
  padding: 8px; /* Add padding for spacing */
}

/* Add a border to each div */
.col-md-1, .col-md-2 {
  padding: 10px; /* Add padding for spacing */
  text-align: center;
}

.pagination-success .page-item {
  width: 40%; /* Adjust the width as needed */
  height: 40%; /* Adjust the height as needed */
  text-align: center;
}

.pagination-success .page-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}

.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded=true] {
  color: colorB1;
}

.btn-toggle[aria-expanded=true]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}

.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}

.lh-tight {
  line-height: 1.25;
}

.navbar {
  transition: all 0.5s ease-in-out;
}

.navbar-sticky {
  background: #605e5e;
  opacity: 0.9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
:root {
  --light-theme-link-color: rgb(0, 0, 203);
  --dark-theme-link-color: #29C0EE;
}

/* Default (light) theme styles */
.theme-text {
  color: var(--light-theme-link-color);
}

/* Dark theme styles */
.dark-theme .theme-text {
  color: var(--dark-theme-link-color);
}

.theme-text-shadow {
  color: var(--light-theme-link-color);
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8); /* Soft black shadow */
}

/* Dark theme with shadow */
.dark-theme .theme-text-shadow {
  color: var(--dark-theme-link-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Soft white shadow */
}

/* a {
  color: var(--light-theme-link-color); 
   text-decoration: none;

 } */


/* [data-theme="dark"] a {
  color: var(--dark-theme-link-color);
}  */